-- تُمَكِّنُك من التعرف على درجة الحرارة  في الموقع الحالي 

require "import"
import "android.content.Intent"
import "android.net.Uri"
import "com.androlua.*"
this.speak("loading page")
url="https://www.accuweather.com/"

Http.get(url,function(status, data)
if status == 200 then
--open(url)
temp = string.match(data, "%d+°")
service.speak("درجةُ الحرارة الآن في المَوْقِع الحالي هي" .. temp)
else
service.speak("لم يتم العثور على الصفحة")
end
end)